home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr05 / scratch3.zip / MAKEZIPS.BAT < prev    next >
DOS Batch File  |  1995-03-03  |  1KB  |  36 lines

  1. @cls
  2. rem @echo off
  3. set fsver=304
  4. Echo -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  5. Echo                          MAKEZIPS.BAT
  6. Echo -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  7. Echo This batch file creates a SINGLE zip file version of the From Scratch system.
  8. Echo BBS users prefer the program in this format.
  9. Echo  
  10. Echo A FSCR%fsver%.ZIP file will been created:
  11. Echo  
  12. Echo PKZIP.EXE must be available and in the path for this to run properly!
  13. Echo  
  14. Pause
  15. if A%1A==AA goto noparam
  16. if %1==A goto noparam
  17. if %1==a goto noparam
  18. if %1==B goto noparam
  19. if %1==b goto noparam
  20. if %1==c goto noparam
  21. if %1==C goto noparam
  22. if not exist 360k.ini goto noparam
  23. Pkzip %1Fscr%fsver%.zip *.*  -ex -z < Fscr.zcm
  24. cls
  25. echo Done!
  26. goto done
  27. :noparam
  28. Echo To use this batch file, make sure the entire contents of the From Scratch
  29. Echo diskette are in the CURRENT directory.
  30. Echo  
  31. Echo Supply the pathspec of the drive to create 3 zip files on.
  32. Echo Example: MAKEZIPS C:, or MAKEZIPS C:\JUNK\
  33. Echo note - the colon, and ending backslash, (if required) must be included!
  34. :done
  35.  
  36.